@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");


@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Outfit:wght@100..900&display=swap');

* { 
margin: 0; 
padding: 0; 
box-sizing: border-box; 
} 

body{
max-width: 100%; 
font-family: "Outfit", sans-serif;
font-optical-sizing: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
height: 100vh;
}

.font-1{
  font-family: "Archivo Black", sans-serif;
}

.color-1{
	color: #fd4101;
}

.color-2{
	color: #41464d;
}



.color-3{
	color: #000;
}

.color-4{
	color: #FF804F;
}



.logo{
height: 70px;
}

.header-design{
padding-top: 0px;
border-bottom: solid 1px #f1f1f1;
background-color: #fff;
position: fixed;
width: 100%;
z-index: 2;
}

.btn{
	border-radius: 20px;
}


.btn-1{
	background-color: #fd4101;
	color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
    transition: all 0.25s ease;
}

.btn-1:hover{
	color: #fff;
	background-color: #821B00;
	transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}


.btn-2{
	background-color: #41464d;
	color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
    transition: all 0.25s ease;
}

.btn-2:hover{
	color: #fff;
	background-color: #821B00;
	transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}


.btn-3{
	background-color: #000;
	color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
    transition: all 0.25s ease;
}

.btn-3:hover{
	color: #fff;
	background-color: #821B00;
	transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}




.admin-topbar {
	height: 72px;
	width: 100%;
	padding: 0 22px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 30;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	border-bottom: 1px solid #f1ece9;
	box-shadow: 0 10px 30px rgba(44, 62, 80, 0.06);
}

.admin-topbar::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #fd4101;
}

.admin-topbar-left,
.admin-topbar-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.admin-topbar-brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.admin-topbar-brand img {
	height: 46px;
	display: block;
}

.admin-menu-btn {
	width: 40px;
	height: 40px;
	border: 1px solid #f1ece9;
	background: #fff;
	border-radius: 10px;
	color: #fd4101;
	font-size: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.admin-menu-btn:hover {
	background: #FFEFE8;
	border-color: #FFB194;
}

.admin-topbar-crumb {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	padding-left: 16px;
	border-left: 1px solid #f1ece9;
}

.admin-topbar-crumb span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fd4101;
}

.admin-topbar-crumb strong {
	font-size: 14px;
	color: #2c3e50;
}

.admin-topbar-site {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 20px;
	background: #FFEFE8;
	color: #fd4101;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.admin-topbar-site:hover {
	background: #fd4101;
	color: #fff;
}

.admin-user {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 10px 6px 6px;
	border: 1px solid #f1ece9;
	border-radius: 999px;
	background: #fafafa;
	color: inherit;
	text-decoration: none;
	transition: border-color .2s ease, background .2s ease;
}

.admin-user:hover {
	border-color: #FFB194;
	background: #fff7f3;
}

.admin-user-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fd4101;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 14px;
}

.admin-user-copy {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	padding-right: 6px;
}

.admin-user-copy strong {
	font-size: 13px;
	color: #2c3e50;
	max-width: 140px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.admin-user-copy span {
	font-size: 11px;
	color: #41464d;
}

.admin-user > i {
	color: #fd4101;
	font-size: 14px;
}

.dashboard-logo{ 
height: 50px; 
} 

.icn { 
height: 30px; 
} 
.menuicn { 
cursor: pointer; 
background-color: #FFEFE8;
color: #fd4101;
transition: 0.4s;
} 


.menuicn:hover{
background-color: #fd4101;
color: #fff;
}

.searchbar, 
.message, 
.logosec { 
display: flex; 
align-items: center; 
justify-content: center; 
} 

.searchbar2 { 
display: none; 
} 

.logosec { 
gap: 16px; 
} 




.message { 
gap: 16px; 
position: relative; 
} 
.circle { 
height: 7px; 
width: 7px; 
position: absolute; 
background-color: transparent; 
border-radius: 50%; 
left: 19px; 
top: 8px; 
} 
.dp { 
height: 50px; 
width: 50px; 
background-color: transparent; 
border-radius: 50%; 
display: flex; 
align-items: center; 
justify-content: center; 
overflow: hidden; 
border: solid 3px #fd4101;
} 
.main-container { 
display: flex; 
position: fixed; 
top: 72px; 
left: 0; 
right: 0; 
bottom: 0; 
z-index: 1; 
} 
.dpicn { 
height: 42px; 
} 

.main { 
height: 100%; 
width: 100%; 
min-width: 0;
flex: 1 1 auto;
overflow-y: scroll; 
overflow-x: hidden; 
padding: 32px clamp(16px, 3vw, 28px) 40px; 
background: #fafafa; 
} 

.main::-webkit-scrollbar-thumb { 
background: #FFB194; 
border-radius: 10px;
} 
.main::-webkit-scrollbar { 
width: 6px; 
} 
.main::-webkit-scrollbar-track { 
background-color: #f1ece9; 
} 

.box-container { 
display: flex; 
justify-content: space-evenly; 
align-items: center; 
flex-wrap: wrap; 
gap: 50px; 
} 
.nav{ 
min-height: 100%; 
width: 100%; 
position: relative; 
display: flex; 
flex-direction: column; 
padding: 20px 14px 18px; 
} 
.navcontainer { 
height: 100%; 
width: 250px; 
flex: 0 0 250px; 
position: relative; 
z-index: 20;
overflow-y: auto; 
overflow-x: hidden; 
transition: width 0.28s ease, flex-basis 0.28s ease, left 0.28s ease; 
border-right: 1px solid rgba(255,255,255,0.06);
background: #161616;
} 
.navcontainer::-webkit-scrollbar { 
display: none; 
} 
.navclose { 
width: 78px; 
flex-basis: 78px; 
} 
.nav-group{
width: 100%;
margin-bottom: 22px;
}
.nav-label{
width: 100%;
padding: 0 12px;
margin: 0 0 8px;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(255,255,255,0.42);
}
.nav-option { 
width: 100%; 
min-height: 44px; 
display: flex; 
align-items: center; 
padding: 10px 12px; 
gap: 10px; 
transition: background 0.2s ease, color 0.2s ease; 
text-decoration: none;
color: rgba(255,255,255,0.82);
background-color: transparent;
border-radius: 10px;
font-size: 14px;
font-weight: 500;
border: none;
cursor: pointer;
}

.nav-option span {
white-space: nowrap;
} 


.nav-option:hover { 
cursor: pointer; 
color: #fff;
background-color: rgba(253, 65, 1, 0.18);
}

.nav-option.is-current{
color: #fff;
background-color: #fd4101;
font-weight: 600;
box-shadow: 0 8px 18px rgba(253, 65, 1, 0.28);
}

.nav-icon{
width: 22px;
margin-right: 0;
font-size: 18px;
line-height: 1;
display: inline-flex;
align-items: center;
justify-content: center;
color: inherit;
}

.nav-foot{
margin-top: auto;
padding-top: 12px;
border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-logout{
width: 100%;
}

.nav-option-logout{
width: 100%;
background: transparent;
text-align: left;
color: #FFB194;
}

.nav-option-logout:hover{
color: #fff;
background-color: rgba(253, 65, 1, 0.18);
}

.nav-dropdown {
	width: 100%;
}

.nav-dropdown-toggle {
	width: 100%;
	text-align: left;
	font-family: inherit;
}

.nav-dropdown-toggle.is-section {
	color: #fff;
	background-color: rgba(253, 65, 1, 0.22);
}

.nav-caret {
	margin-left: auto;
	font-size: 12px;
	transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-caret {
	transform: rotate(180deg);
}

.nav-sub {
	display: none;
	flex-direction: column;
	gap: 2px;
	padding: 4px 0 6px 32px;
}

.nav-dropdown.is-open .nav-sub {
	display: flex;
}

.nav-sub-link {
	display: block;
	padding: 8px 12px;
	border-radius: 8px;
	color: rgba(255,255,255,0.72);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
}

.nav-sub-link:hover {
	color: #fff;
	background-color: rgba(255,255,255,0.08);
}

.nav-sub-link.is-current {
	color: #fff;
	background-color: #fd4101;
	font-weight: 600;
}

.navclose .nav-label,
.navclose .nav-option span,
.navclose .nav-caret,
.navclose .nav-sub {
	display: none;
}

.navclose .nav-option{
	justify-content: center;
	padding: 10px 0;
}

.navclose .nav-group {
	margin-bottom: 10px;
}

.admin-nav-backdrop {
	display: none;
}

.topbar-user{
font-weight: 600;
font-size: 14px;
color: #2c3e50;
} 

.nav-img { 
height: 10px; 
} 

.nav-upper-options { 
display: flex; 
flex-direction: column; 
align-items: center; 
gap: 0px; 
} 

.option1 { 
cursor: pointer; 
border: none;
} 
.option1:hover { 

} 




.box { 
height: 130px; 
width: 230px; 
border-radius: 20px; 
box-shadow: 3px 3px 10px rgba(0, 30, 87, 0.751); 
padding: 20px; 
display: flex; 
align-items: center; 
justify-content: space-around; 
cursor: pointer; 
transition: transform 0.3s ease-in-out; 
} 
.box:hover { 
transform: scale(1.08); 
} 

.box:nth-child(1) { 
background-color: var(--one-use-color); 
} 
.box:nth-child(2) { 
background-color: var(--two-use-color); 
} 
.box:nth-child(3) { 
background-color: var(--one-use-color); 
} 
.box:nth-child(4) { 
background-color: var(--two-use-color); 
} 

.box img { 
height: 50px; 
} 
.box .text { 
color: white; 
} 
.topic { 
font-size: 13px; 
font-weight: 400; 
letter-spacing: 1px; 
} 

.topic-heading { 
font-size: 30px; 
letter-spacing: 3px; 
} 

.report-container { 
min-height: 300px; 
max-width: 1200px; 
margin: 70px auto 0px auto; 
background-color: #ffffff; 
border-radius: 30px; 
box-shadow: 3px 3px 10px rgb(188, 188, 188); 
padding: 0px 20px 20px 20px; 
} 
.report-header { 
height: 80px; 
width: 100%; 
display: flex; 
align-items: center; 
justify-content: space-between; 
padding: 20px 20px 10px 20px; 
border-bottom: 2px solid rgba(0, 20, 151, 0.59); 
} 

.recent-Articles { 
font-size: 30px; 
font-weight: 600; 
color: #5500cb; 
} 

.view { 
height: 35px; 
width: 90px; 
border-radius: 8px; 
background-color: #5500cb; 
color: white; 
font-size: 15px; 
border: none; 
cursor: pointer; 
} 

.report-body { 
max-width: 1160px; 
overflow-x: auto; 
padding: 20px; 
} 
.report-topic-heading, 
.item1 { 
width: 1120px; 
display: flex; 
justify-content: space-between; 
align-items: center; 
} 
.t-op { 
font-size: 18px; 
letter-spacing: 0px; 
} 

.items { 
width: 1120px; 
margin-top: 15px; 
} 

.item1 { 
margin-top: 20px; 
} 
.t-op-nextlvl { 
font-size: 14px; 
letter-spacing: 0px; 
font-weight: 600; 
} 


.active-link{
background-color:  #ffd9ab;
}



table td, table th {
white-space: nowrap;
}

nav .navbar-nav li a {
    position: relative;
    transition: 0.4s;
    color: #2c3e50 !important;
    font-weight: 500;
}

.header-design .navbar-nav > .nav-item > .nav-link {
    display: flex;
    align-items: center;
    line-height: 1.2;
}

nav .navbar-nav li a:hover {
    color: #fd4101 !important;
}

nav .navbar-nav > li > .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 0;
    height: 2px;
    background: #fd4101;
    border-radius: 3px;
    transition: width 0.3s ease;
}

nav .navbar-nav > li > .nav-link:hover::before {
    width: 100%;
}

nav .navbar-nav li a.is-current {
    color: #fd4101 !important;
    font-weight: 700;
}

nav .navbar-nav > li > .nav-link.is-current::before {
    width: 100%;
}

.header-design .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-design .nav-link.dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0;
    border-top: 0.32em solid currentColor;
    border-right: 0.32em solid transparent;
    border-bottom: 0;
    border-left: 0.32em solid transparent;
    position: static;
    background: none;
    border-radius: 0;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.header-design .nav-link.dropdown-toggle:hover::after,
.header-design .nav-link.dropdown-toggle.is-current::after {
    width: 0;
}

nav .navbar-nav .dropdown-menu a::after {
    display: none;
}

.header-design .dropdown-menu {
    border: 1px solid #f1ece9;
    border-radius: 10px;
    padding: 8px;
    margin-top: 0;
    box-shadow: 0 14px 30px rgba(44, 62, 80, 0.12);
    min-width: 280px;
}

.header-design .dropdown-item {
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50 !important;
    white-space: nowrap;
}

.header-design .dropdown-item:hover,
.header-design .dropdown-item:focus,
.header-design .dropdown-item.active {
    background: rgba(253, 65, 1, 0.08);
    color: #fd4101 !important;
}

@media (min-width: 992px) {
    .header-design .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
}

#who-we-are,
#our-clients,
#our-track-record {
    scroll-margin-top: 90px;
}

.team-section{
	padding-top: 70px;
	padding-bottom: 70px;
	background: #fff;
}

.team-card-link{
	display: block;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.team-card-link:hover{
	color: inherit;
}

.team-card{
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: #fff;
	border: 1px solid #f1ece9;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.05);
	padding: 28px 18px 24px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-card-link:hover .team-card{
	transform: translateY(-5px);
	border-color: #FFB194;
	box-shadow: 0 16px 32px rgba(253, 65, 1, 0.1);
}

.team-card-media{
	width: 148px;
	height: 148px;
	border-radius: 50%;
	overflow: hidden;
	background: #FFEFE8;
	border: 3px solid #fd4101;
	box-shadow: 0 0 0 5px rgba(253, 65, 1, 0.12);
	margin: 0 auto 18px;
	flex-shrink: 0;
}

.team-card-image{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.team-card-link:hover .team-card-image{
	transform: scale(1.06);
}

.team-card-body{
	padding: 0;
	width: 100%;
}

.team-card-avatar{
	width: 100%;
	height: 100%;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFEFE8;
	color: #fd4101;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.team-card-title{
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #fd4101;
	margin-bottom: 4px;
}

.team-card-body h5{
	font-weight: 800;
	font-size: 16px;
	line-height: 1.3;
	margin-bottom: 6px;
	color: #2c3e50;
}

.team-card-role{
	font-size: 13px;
	color: #41464d;
	margin-bottom: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.team-card-more{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fd4101;
	font-size: 13px;
	font-weight: 600;
}

.team-card-link:hover .team-card-more{
	gap: 10px;
}

@media screen and (max-width: 575.98px){
.team-card{
	padding: 22px 12px 18px;
}

.team-card-media{
	width: 120px;
	height: 120px;
	box-shadow: 0 0 0 4px rgba(253, 65, 1, 0.12);
}

.team-card-avatar{
	font-size: 24px;
}

.team-card-body h5{
	font-size: 15px;
}
}

.team-card-bio,
.team-profile-bio{
	font-size: 15px;
	line-height: 1.8;
	color: #41464d;
	margin: 0;
}

.team-card-bio p,
.team-card-bio ul,
.team-card-bio ol,
.team-card-bio blockquote,
.team-profile-bio p,
.team-profile-bio ul,
.team-profile-bio ol,
.team-profile-bio blockquote{
	margin: 0 0 12px;
}

.team-card-bio p:last-child,
.team-card-bio ul:last-child,
.team-card-bio ol:last-child,
.team-card-bio blockquote:last-child,
.team-profile-bio p:last-child,
.team-profile-bio ul:last-child,
.team-profile-bio ol:last-child,
.team-profile-bio blockquote:last-child{
	margin-bottom: 0;
}

.team-card-bio ul,
.team-card-bio ol,
.team-profile-bio ul,
.team-profile-bio ol{
	padding-left: 18px;
}

.team-card-bio a,
.team-profile-bio a{
	color: #fd4101;
}

.team-profile-hero{
	padding-bottom: 70px;
}

.team-profile-crumb{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.72);
}

.team-profile-crumb a{
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	font-weight: 600;
}

.team-profile-crumb a:hover{
	color: #fd4101;
}

.team-profile-crumb i{
	font-size: 11px;
}

.team-profile-crumb span{
	color: #fff;
	font-weight: 600;
}

.team-profile{
	padding-top: 60px;
	padding-bottom: 70px;
	background: #fafafa;
}

.team-profile-card{
	position: relative;
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 44px;
	align-items: start;
	background: #fff;
	border: 1px solid #f1ece9;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 18px 48px rgba(44, 62, 80, 0.08);
}

.team-profile-aside{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.team-profile-photo-wrap{
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	background: #FFEFE8;
	border: 3px solid #fd4101;
	box-shadow: 0 0 0 6px rgba(253, 65, 1, 0.1);
}

.team-profile-photo{
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	display: block;
}

.team-profile-avatar{
	aspect-ratio: 4 / 5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fd4101;
	font-size: 48px;
	font-weight: 800;
}

.team-profile-cta{
	width: 100%;
	margin-top: 22px;
	text-align: center;
}

.team-profile-back{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fd4101;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	margin-top: 16px;
}

.team-profile-back:hover{
	color: #821B00;
}

.team-profile-copy{
	min-width: 0;
	overflow-wrap: break-word;
}

.team-profile-copy h2{
	margin-bottom: 0;
	font-size: 34px;
	line-height: 1.25;
	overflow-wrap: break-word;
}

.team-profile-role{
	display: inline-block;
	background: #FFEFE8;
	color: #fd4101;
	padding: 6px 14px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 14px;
}

.team-profile-divider{
	width: 64px;
	height: 4px;
	border-radius: 4px;
	background: #fd4101;
	margin: 20px 0 24px;
}

.team-profile-bio{
	font-size: 16px;
	overflow-wrap: break-word;
}

.team-profile-bio h3,
.team-profile-bio h4{
	font-size: 18px;
	font-weight: 800;
	margin: 22px 0 10px;
	color: #2c3e50;
}

.team-profile-bio li{
	margin-bottom: 6px;
}

.team-profile-bio blockquote{
	padding: 14px 18px;
	border-left: 3px solid #fd4101;
	background: #FFEFE8;
	border-radius: 0 10px 10px 0;
}

.team-profile-others{
	margin-top: 56px;
	padding-top: 44px;
	border-top: 1px solid #ebe5e2;
}

@media screen and (max-width: 991.98px){
.team-profile-card{
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 32px;
	padding: 32px;
}

.team-profile-copy h2{
	font-size: 28px;
}
}

@media screen and (max-width: 767.98px){
.team-profile{
	padding-top: 40px;
}

.team-profile-card{
	grid-template-columns: 1fr;
	gap: 28px;
	padding: 26px 20px;
}

.team-profile-aside{
	max-width: 260px;
	margin: 0 auto;
	width: 100%;
}

.team-profile-copy{
	text-align: center;
}

.team-profile-copy h2{
	font-size: 26px;
}

.team-profile-divider{
	margin-left: auto;
	margin-right: auto;
}

.team-profile-bio{
	text-align: left;
}
}

.hero-slider{
	position: relative;
}

.hero-slide{
	padding-top: 220px;
	padding-bottom: 90px;
	min-height: 620px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-blend-mode: darken;
	background-color: rgba(0, 0, 0, 0.5);
}

.hero-title{
	font-family: "Archivo Black", sans-serif;
	font-size: 2.5vw;
	font-weight: 900;
	color: #fff;
}

.hero-subtitle{
	font-size: 17px;
	color: #fff;
	font-weight: 300;
}

.hero-slider .carousel-indicators{
	margin-bottom: 28px;
}

.hero-slider .carousel-indicators [data-bs-target]{
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background-color: rgba(255, 255, 255, 0.45);
	opacity: 1;
}

.hero-slider .carousel-indicators .active{
	background-color: #fd4101;
	transform: scale(1.15);
}

.hero-control{
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(253, 65, 1, 0.92);
	color: #fff;
	font-size: 20px;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next{
	width: auto;
	opacity: 1;
}

.hero-slider .carousel-control-prev{
	left: 18px;
}

.hero-slider .carousel-control-next{
	right: 18px;
}

@media screen and (max-width: 767.98px){
.hero-slide{
	padding-top: 160px;
	padding-bottom: 80px;
	min-height: 520px;
}

.hero-title{
	font-size: 28px;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next{
	display: none;
}
}

.home-about{
	background: linear-gradient(90deg, #FFEFE8, #fafafa, #FFF8F7);
	padding-top: 70px;
	padding-bottom: 70px;
}

.about-copy h1{
	margin-bottom: 18px;
}

.about-copy p{
	font-size: 16px;
	line-height: 1.75;
	color: #41464d;
	margin-bottom: 16px;
}

.about-quote{
	position: relative;
	background-color: #000;
	border-radius: 10px;
	padding: 24px 24px 24px 28px;
	border-left: 4px solid #fd4101;
	margin: 24px 0 0;
}

.about-quote-icon{
	position: absolute;
	top: 12px;
	right: 16px;
	font-size: 28px;
	color: #fd4101;
	opacity: 0.7;
}

.about-quote p{
	color: #FF804F;
	font-weight: 700;
	margin: 0;
	padding-right: 28px;
	line-height: 1.7;
}

.about-actions{
	margin-top: 28px;
}

.about-visual{
	background: #111;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.about-visual-image{
	width: 100%;
	height: 380px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.about-stats{
	display: flex;
	background: #111;
	padding: 22px 8px;
}

.about-stat{
	flex: 1;
	text-align: center;
	color: #fff;
	padding: 0 10px;
	border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.about-stat:last-child{
	border-right: none;
}

.about-stat h3{
	margin: 0 0 4px;
	font-size: 28px;
	font-weight: 700;
	color: #fd4101;
}

.about-stat p{
	margin: 0;
	font-size: 13px;
	opacity: 0.9;
}

@media screen and (max-width: 767.98px){
.about-visual-image{
	height: 260px;
}

.about-stat h3{
	font-size: 22px;
}

.about-stat p{
	font-size: 11px;
}
}

.home-services{
	padding-top: 70px;
	padding-bottom: 70px;
	background: linear-gradient(to bottom, #FFF0E8, #fafafa);
}

.home-service-card{
	height: 100%;
	display: flex;
	flex-direction: column;
	border: none;
	border-radius: 10px;
	background-color: #fff;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-service-card:hover{
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(44, 62, 80, 0.12);
}

.home-service-card-body{
	padding: 22px 22px 28px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.home-service-card-icon{
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(253, 65, 1, 0.1);
	color: #fd4101;
	border-radius: 10px;
	font-size: 18px;
	margin-bottom: 14px;
}

.home-service-card-title{
	font-weight: 900;
	margin-bottom: 10px;
}

.home-service-card-text{
	font-size: 14px;
	color: #41464d;
	line-height: 1.7;
	margin-bottom: 20px;
	flex-grow: 1;
}

.home-service-card-button{
	text-decoration: none;
	color: #fd4101;
	border-radius: 10px;
	border: solid 2px #FFB194;
	padding: 12px 24px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
	transition: all 0.25s ease;
}

.home-service-card-button:hover{
	color: #fff;
	background: #fd4101;
	border-color: #fd4101;
	transform: translateY(-3px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.home-service-card-image{
	height: 210px;
	position: relative;
	overflow: hidden;
}

.home-service-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.home-service-card:hover .home-service-card-image img{
	transform: scale(1.05);
}

.home-service-card-label {
	position: absolute;
	bottom: 15px;
	left: 15px;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fd4101;
	color: #fff;
	border-radius: 21px;
	font-size: 14px;
	font-weight: 700;
	z-index: 2;
}


/* Responsive CSS Here */
@media screen and (min-width: 950px) {



}




.image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-overlay img {
    display: block;
}

/* Gradient at the bottom */
.image-overlay::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0)
    );
    z-index: 1;
}

.image-stats {
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 100%;
    padding: 0 25px;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    color: #fff;
    z-index: 2;
}

.image-stat {
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.image-stat:first-child {
    padding-left: 0;
    border-left: none;
}

.image-stat h3 {
    margin: 0 0 4px;
    font-size: 28px;
    font-weight: 700;
}

.image-stat p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.home-why{
	padding-top: 50px;
	padding-bottom: 50px;
	background: linear-gradient(90deg, #fafafa, #FFEFE8, #FFF8F7);
}

.why-visual{
	position: relative;
	height: 100%;
	min-height: 520px;
	overflow: hidden;
	border-radius: 10px;
}

@media screen and (min-width: 992px){
.why-visual{
	position: sticky;
	top: 100px;
	min-height: 640px;
}
}

.why-visual-image{
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.why-visual::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 55%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
	z-index: 1;
}

.why-visual-caption{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 28px 28px 32px;
	color: #fff;
	z-index: 2;
}

.why-visual-caption h6{
	font-family: "Archivo Black", sans-serif;
	font-size: 22px;
	margin-bottom: 8px;
}

.why-visual-caption p{
	margin: 0;
	font-size: 14px;
	opacity: 0.92;
	max-width: 340px;
	line-height: 1.6;
}

.why-content{
	padding-left: 20px;
}

.why-intro{
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 28px;
}

.why-list{
	display: flex;
	flex-direction: column;
}

.why-item{
	display: flex;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(253, 65, 1, 0.12);
}

.why-item:last-child{
	border-bottom: none;
	padding-bottom: 0;
}

.why-item-icon{
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fd4101;
	color: #fff;
	border-radius: 50%;
	font-size: 18px;
	margin-top: 2px;
}

.why-item-title{
	font-weight: 900;
	font-size: 18px;
	margin-bottom: 6px;
}

.why-item-text{
	font-size: 14px;
	color: #41464d;
	margin-bottom: 0;
	line-height: 1.7;
}

@media screen and (max-width: 991.98px){
.why-content{
	padding-left: 0;
	padding-top: 10px;
}

.why-visual,
.why-visual-image{
	min-height: 360px;
}
}

.home-insights{
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #fff;
}

.insight-card{
	height: 100%;
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.insight-card-wrap{
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.insight-card-wrap:hover{
	color: inherit;
}

.insight-card:hover{
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(44, 62, 80, 0.12);
}

.insight-card-image{
	position: relative;
	height: 200px;
	overflow: hidden;
}

.insight-card-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.insight-card-tag{
	position: absolute;
	left: 15px;
	bottom: 15px;
	background: #fd4101;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 20px;
	z-index: 2;
}

.insight-card-body{
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 20px 20px 28px;
}

.insight-card-meta{
	font-size: 13px;
	color: #41464d;
	margin-bottom: 8px;
}

.insight-card-title{
	font-weight: 900;
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 10px;
}

.insight-card-text{
	font-size: 14px;
	color: #41464d;
	line-height: 1.7;
	margin-bottom: 16px;
}

.insight-card-link{
	text-decoration: none;
	color: #fd4101;
	font-weight: 600;
	font-size: 14px;
}

.insight-card-link:hover{
	color: #821B00;
}

.insight-card-body .insight-card-link{
	margin-top: auto;
}

.blog-empty{
	padding: 60px 24px;
	text-align: center;
	border: 1px dashed #e6e0dd;
	border-radius: 14px;
	background: #fafafa;
	color: #41464d;
}

.blog-empty i{
	display: block;
	font-size: 36px;
	color: #fd4101;
	margin-bottom: 12px;
}

.blog-detail-hero{
	position: relative;
	padding: 190px 0 90px;
	background-size: cover;
	background-position: center;
	color: #fff;
	isolation: isolate;
}

.blog-detail-hero::before{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.45));
	z-index: -1;
}

.blog-detail-hero h1{
	max-width: 900px;
	font-size: clamp(26px, 3.2vw, 36px);
	line-height: 1.25;
	margin: 14px 0;
}

.blog-detail-back{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	margin-bottom: 22px;
}

.blog-detail-back:hover{
	color: #fd4101;
}

.blog-detail-category{
	display: table;
	padding: 7px 14px;
	border-radius: 999px;
	background: #fd4101;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.blog-detail{
	padding: 64px 0 70px;
	background: #fafafa;
}

.blog-article{
	max-width: 850px;
	margin: 0 auto;
	padding: clamp(24px, 5vw, 54px);
	background: #fff;
	border: 1px solid #f1ece9;
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(44,62,80,.07);
}

.blog-article-lead{
	font-size: 19px;
	line-height: 1.8;
	color: #2c3e50;
	font-weight: 500;
	padding-bottom: 26px;
	margin-bottom: 30px;
	border-bottom: 1px solid #f1ece9;
}

.blog-article-content{
	font-size: 16px;
	line-height: 1.85;
	color: #41464d;
	overflow-wrap: break-word;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4{
	color: #2c3e50;
	font-weight: 800;
	margin: 30px 0 14px;
}

.blog-article-content p,
.blog-article-content ul,
.blog-article-content ol,
.blog-article-content blockquote{
	margin-bottom: 18px;
}

.blog-article-content blockquote{
	padding: 18px 22px;
	background: #FFEFE8;
	border-left: 4px solid #fd4101;
	border-radius: 0 10px 10px 0;
}

.blog-article-content a{
	color: #fd4101;
}

.blog-detail-cta{
	max-width: 850px;
	margin: 30px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 28px 30px;
	border-radius: 16px;
	background: #161616;
	color: #fff;
}

.blog-detail-cta h3,
.blog-detail-cta p{
	margin-bottom: 6px;
}

.blog-detail-cta p{
	color: rgba(255,255,255,.72);
}

.blog-related{
	margin-top: 64px;
	padding-top: 46px;
	border-top: 1px solid #e6e0dd;
}

.blog-pagination,
.admin-pagination{
	margin-top: 24px;
}

.blog-pagination svg,
.admin-pagination svg{
	width: 20px;
	height: 20px;
}

@media screen and (max-width: 575.98px){
.blog-detail-hero{
	padding: 150px 0 65px;
}

.blog-detail-cta{
	flex-direction: column;
	align-items: flex-start;
}
}

.home-clients{
	padding-top: 70px;
	padding-bottom: 70px;
	background: #fff;
	border-top: 1px solid #f1ece9;
}

.home-team{
	padding-top: 70px;
	padding-bottom: 70px;
	background: #fafafa;
	border-top: 1px solid #f1ece9;
}

.client-logo-grid{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	margin-top: 32px;
}

.client-logo-slot{
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fafafa;
	border: 1px solid #f1ece9;
	border-radius: 10px;
	padding: 20px 16px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.client-logo-slot:hover{
	border-color: #FFB194;
	box-shadow: 0 8px 18px rgba(44, 62, 80, 0.06);
	transform: translateY(-2px);
}

.client-logo-slot img{
	max-width: 100%;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.78;
	transition: filter 0.2s ease, opacity 0.2s ease;
}

.client-logo-slot:hover img{
	filter: grayscale(0);
	opacity: 1;
}

.home-track{
	padding-top: 70px;
	padding-bottom: 70px;
	background: linear-gradient(90deg, #fafafa, #FFEFE8, #FFF8F7);
}

.track-card{
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border-radius: 10px;
	padding: 28px 26px;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.track-card:hover{
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(44, 62, 80, 0.12);
}

.track-card-top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.track-card-number{
	font-weight: 700;
	color: #fd4101;
	font-size: 14px;
}

.track-card-tag{
	background: rgba(253, 65, 1, 0.1);
	color: #fd4101;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 20px;
}

.track-card-title{
	font-weight: 900;
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 10px;
}

.track-card-text{
	font-size: 14px;
	color: #41464d;
	line-height: 1.7;
	margin-bottom: 18px;
}

.track-card-text p,
.track-card-text ul,
.track-card-text ol,
.track-card-text blockquote{
	margin-bottom: 12px;
}

.track-card-text p:last-child,
.track-card-text ul:last-child,
.track-card-text ol:last-child,
.track-card-text blockquote:last-child{
	margin-bottom: 0;
}

.track-card-text a{
	color: #fd4101;
}

.track-read-more{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	align-self: flex-start;
	margin: auto 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fd4101;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
}

.track-read-more i{
	font-size: 12px;
	transition: transform .2s ease;
}

.track-read-more.is-open i{
	transform: rotate(180deg);
}

.track-read-more:hover,
.track-read-more:focus-visible{
	color: #d93801;
	outline: none;
	gap: 10px;
}

.track-card-meta{
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 13px;
	color: #41464d;
	margin-bottom: 16px;
}

.track-detail-article{
	max-width: 900px;
}

.track-card-meta i{
	color: #fd4101;
	margin-right: 4px;
}

@media screen and (max-width: 1199.98px){
.client-logo-grid{
	grid-template-columns: repeat(3, 1fr);
}
}

@media screen and (max-width: 575.98px){
.client-logo-grid{
	grid-template-columns: repeat(2, 1fr);
}
}

.track-page,
.clients-page{
	padding-top: 70px;
	padding-bottom: 70px;
	background: #fff;
}

.track-page{
	background: linear-gradient(90deg, #fafafa, #FFEFE8, #FFF8F7);
}

.client-type-card{
	height: 100%;
	background: #fafafa;
	border: 1px solid #f1ece9;
	border-radius: 10px;
	padding: 28px 24px;
}

.client-type-icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(253, 65, 1, 0.1);
	color: #fd4101;
	font-size: 20px;
	margin-bottom: 16px;
}

.client-type-card h5{
	font-weight: 800;
	margin-bottom: 8px;
}

.client-type-card p{
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: #41464d;
}

.home-cta{
	position: relative;
	padding-top: 90px;
	padding-bottom: 90px;
	overflow: hidden;
}

.home-cta-bg{
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-color: #111;
	background-blend-mode: darken;
	filter: none;
}

.home-cta-bg::after{
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
}

.home-cta .container{
	position: relative;
	z-index: 2;
}

.home-cta-title{
	color: #fff;
	margin-bottom: 16px;
}

.home-cta-text{
	color: rgba(255, 255, 255, 0.86);
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 28px;
}

.home-cta-actions{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.site-footer{
	background: #111;
	color: #d7d7d7;
	padding-top: 60px;
	padding-bottom: 20px;
	border-top: 3px solid #fd4101;
}

.footer-brand{
	display: inline-block;
	margin-bottom: 18px;
}

.footer-logo{
	height: 70px;
	width: auto;
	display: block;
}

.footer-about{
	font-size: 14px;
	line-height: 1.7;
	color: #bdbdbd;
	max-width: 340px;
	margin-bottom: 20px;
}

.footer-social{
	display: flex;
	gap: 10px;
}

.footer-social a{
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #1d1d1d;
	color: #fff;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover{
	background: #fd4101;
	color: #fff;
}

.footer-title{
	color: #fff;
	font-weight: 700;
	margin-bottom: 18px;
	letter-spacing: 0.02em;
}

.footer-links{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li{
	margin-bottom: 10px;
}

.footer-links a{
	color: #bdbdbd;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease;
}

.footer-links a:hover{
	color: #fd4101;
}

.footer-contact{
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}

.footer-contact li{
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 14px;
	color: #bdbdbd;
}

.footer-contact i{
	color: #fd4101;
	margin-top: 2px;
}

.footer-contact a{
	color: #bdbdbd;
	text-decoration: none;
}

.footer-contact a:hover{
	color: #fd4101;
}

.footer-cta{
	display: inline-flex;
}

.footer-bottom{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p{
	margin: 0;
	font-size: 13px;
	color: #8f8f8f;
}

.page-hero{
	padding-top: 160px;
	padding-bottom: 70px;
	background-size: cover;
	background-position: center;
	background-color: rgba(0, 0, 0, 0.55);
	background-blend-mode: darken;
}

.page-hero-title{
	color: #fff;
	margin-bottom: 12px;
}

.page-hero-text{
	color: rgba(255, 255, 255, 0.88);
	max-width: 640px;
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
}

.contact-section{
	padding-top: 70px;
	padding-bottom: 70px;
	background: #fff;
}

.contact-info-card{
	display: flex;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid #f1ece9;
}

.contact-info-card:last-of-type{
	border-bottom: none;
}

.contact-info-icon{
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fd4101;
	color: #fff;
	border-radius: 50%;
	font-size: 18px;
}

.contact-info-card h6{
	font-weight: 700;
	margin-bottom: 4px;
}

.contact-info-card p{
	margin: 0;
	font-size: 14px;
	color: #41464d;
	line-height: 1.6;
}

.contact-info-card a{
	color: #41464d;
	text-decoration: none;
}

.contact-info-card a:hover{
	color: #fd4101;
}

.contact-form-card{
	background: #fafafa;
	border: 1px solid #f1ece9;
	border-radius: 10px;
	padding: 32px 28px;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
}

.contact-form-card h3{
	margin-bottom: 8px;
}

.contact-form-card label{
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
}

.contact-form-card input,
.contact-form-card textarea{
	width: 100%;
	border: 1px solid #e6e0dd;
	border-radius: 8px;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 14px;
	background: #fff;
	outline: none;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus{
	border-color: #fd4101;
}

.contact-success{
	background: #e9f7ef;
	color: #1e7a46;
	border-radius: 8px;
	padding: 12px 14px;
	margin-bottom: 18px;
	font-size: 14px;
}

.contact-map{
	border-radius: 10px;
	overflow: hidden;
	min-height: 360px;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.08);
}

.contact-map iframe{
	width: 100%;
	height: 360px;
	border: 0;
	display: block;
}

.who-section{
	padding-top: 70px;
	padding-bottom: 70px;
	background: #fff;
}

.who-section-alt{
	background: linear-gradient(90deg, #FFEFE8, #fafafa, #FFF8F7);
}

.who-section p{
	font-size: 16px;
	line-height: 1.75;
	color: #41464d;
}

.who-image{
	width: 100%;
	height: 100%;
	min-height: 280px;
	max-height: 360px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}

.who-vm{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 48px;
	margin-bottom: 48px;
}

.who-vm-card{
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 280px;
	border-radius: 12px;
	padding: 36px 32px;
	overflow: hidden;
}

.who-vm-icon{
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 24px;
	margin-bottom: 20px;
}

.who-vm-label{
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.who-vm-card h3{
	font-family: "Archivo Black", sans-serif;
	font-size: 26px;
	line-height: 1.35;
	margin: 0;
	font-weight: 400;
}

.who-vm-vision{
	background: #111;
	color: #fff;
}

.who-vm-vision .who-vm-icon{
	background: #fd4101;
	color: #fff;
}

.who-vm-vision .who-vm-label{
	color: #fd4101;
}

.who-vm-vision h3{
	color: #fff;
}

.who-vm-mission{
	background: linear-gradient(180deg, #FFF0E8 0%, #fff 100%);
	border: 1px solid #FFB194;
	color: #2c3e50;
}

.who-vm-mission .who-vm-icon{
	background: #fff;
	color: #fd4101;
	border: 2px solid #fd4101;
}

.who-vm-mission .who-vm-label{
	color: #fd4101;
}

.who-vm-mission h3{
	color: #2c3e50;
}

@media screen and (max-width: 767.98px){
.who-vm{
	grid-template-columns: 1fr;
}

.who-vm-card{
	min-height: 220px;
	padding: 28px 24px;
}

.who-vm-card h3{
	font-size: 22px;
}
}

.who-values{
	margin-top: 8px;
	background: linear-gradient(180deg, #FFF8F7 0%, #fafafa 100%);
	border: 1px solid #f1ece9;
	border-radius: 16px;
	padding: 40px 36px 36px;
}

.who-values-head{
	margin-bottom: 28px;
	max-width: 640px;
}

.who-values-head h2{
	margin-bottom: 10px;
}

.who-values-head p{
	margin: 0;
}

.who-values-grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.who-core-card{
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 28px 26px 26px;
	min-height: 220px;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
	overflow: hidden;
}

.who-core-num{
	position: absolute;
	top: 18px;
	right: 22px;
	font-family: "Archivo Black", sans-serif;
	font-size: 32px;
	line-height: 1;
	color: rgba(253, 65, 1, 0.14);
}

.who-core-icon{
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(253, 65, 1, 0.1);
	color: #fd4101;
	border-radius: 12px;
	font-size: 22px;
	margin-bottom: 16px;
}

.who-core-card h3{
	font-family: "Archivo Black", sans-serif;
	font-size: 22px;
	margin: 0 0 10px;
	color: #111;
}

.who-core-card p{
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
	color: #41464d;
}

@media screen and (max-width: 767.98px){
.who-values{
	padding: 28px 20px;
}

.who-values-grid{
	grid-template-columns: 1fr;
}
}

.who-value-card{
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #fafafa;
	border: 1px solid #f1ece9;
	border-radius: 10px;
	padding: 24px 20px;
}

.who-value-icon{
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fd4101;
	color: #fff;
	border-radius: 50%;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 14px;
}

.who-value-card h5{
	font-weight: 800;
	margin-bottom: 10px;
}

.who-value-card p{
	font-size: 14px;
	margin: 0;
}

.who-quote{
	position: relative;
	background: #111;
	color: #FF804F;
	border-radius: 12px;
	padding: 28px 28px 28px 32px;
	border-left: 4px solid #fd4101;
	margin-top: 28px;
}

.who-quote i{
	color: #fd4101;
	font-size: 28px;
	opacity: 0.7;
	display: block;
	margin-bottom: 8px;
}

.who-quote p{
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5;
	margin: 0;
}

.who-approach-list{
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.who-approach-item{
	display: flex;
	gap: 18px;
	background: #fff;
	border-radius: 12px;
	padding: 24px 22px;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
}

.who-approach-num{
	flex-shrink: 0;
	font-family: "Archivo Black", sans-serif;
	font-size: 22px;
	color: #fd4101;
	line-height: 1.2;
	min-width: 42px;
}

.who-approach-item h3{
	font-family: "Archivo Black", sans-serif;
	font-size: 20px;
	margin: 0 0 8px;
}

.who-approach-item p{
	margin: 0;
	font-size: 15px;
}

.who-audience{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin: 32px 0 36px;
}

.who-audience-card{
	background: #fafafa;
	border: 1px solid #f1ece9;
	border-radius: 12px;
	padding: 24px 22px;
}

.who-audience-card i{
	font-size: 26px;
	color: #fd4101;
	margin-bottom: 12px;
	display: block;
}

.who-audience-card h4{
	font-weight: 800;
	font-size: 18px;
	margin-bottom: 8px;
}

.who-audience-card p{
	margin: 0;
	font-size: 14px;
}

.who-prop-intro{
	margin-bottom: 24px;
}

.who-prop-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.who-prop-card{
	position: relative;
	border-radius: 12px;
	padding: 28px 24px 26px;
	min-height: 260px;
	overflow: hidden;
}

.who-prop-card span{
	display: block;
	font-family: "Archivo Black", sans-serif;
	font-size: 14px;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
}

.who-prop-card h3{
	font-family: "Archivo Black", sans-serif;
	font-size: 28px;
	margin: 0 0 12px;
}

.who-prop-card p{
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
}

.who-prop-quality{
	background: #111;
	color: #fff;
}

.who-prop-quality span,
.who-prop-quality h3{
	color: #fd4101;
}

.who-prop-quality p{
	color: rgba(255,255,255,0.86);
}

.who-prop-value{
	background: linear-gradient(180deg, #FFF0E8 0%, #fff 100%);
	border: 1px solid #FFB194;
}

.who-prop-value span,
.who-prop-value h3{
	color: #fd4101;
}

.who-prop-change{
	background: #fff;
	border: 1px solid #f1ece9;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
}

.who-prop-change span,
.who-prop-change h3{
	color: #fd4101;
}

.who-deliver{
	margin-top: 28px;
	background: #fd4101;
	color: #fff;
	border-radius: 12px;
	padding: 28px 32px;
	text-align: center;
}

.who-deliver p{
	margin: 0;
	color: #fff;
	font-family: "Archivo Black", sans-serif;
	font-size: 22px;
	line-height: 1.4;
}

.who-partners{
	margin-top: 48px;
	padding-top: 36px;
	border-top: 1px solid #f1ece9;
}

.who-partners h3{
	margin-bottom: 10px;
}

.who-partner-list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 20px;
}

.who-partner{
	background: #fafafa;
	border: 1px solid #f1ece9;
	border-radius: 10px;
	padding: 18px 16px;
	text-align: center;
	font-weight: 700;
	font-size: 14px;
	color: #2c3e50;
}

@media screen and (max-width: 991.98px){
.who-audience,
.who-prop-grid,
.who-partner-list{
	grid-template-columns: 1fr;
}

.who-deliver p{
	font-size: 18px;
}
}

@media screen and (max-width: 991.98px){
.who-image{
	margin-top: 8px;
	max-height: 260px;
}
}

@media screen and (max-width: 767.98px){
.home-cta{
	padding-top: 70px;
	padding-bottom: 70px;
}

.footer-bottom{
	flex-direction: column;
	text-align: center;
}
}

.services-page,
.service-detail{
	padding-top: 70px;
	padding-bottom: 70px;
	background: #fff;
}

.service-detail p{
	font-size: 16px;
	line-height: 1.75;
	color: #41464d;
}

.service-detail-image{
	width: 100%;
	height: 100%;
	min-height: 280px;
	max-height: 420px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}

.service-offer-list{
	list-style: none;
	padding: 0;
	margin: 28px 0 0;
}

.service-offer-list li{
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 15px;
	font-weight: 600;
	color: #2c3e50;
}

.service-offer-list i{
	color: #fd4101;
	margin-top: 2px;
}

.service-other{
	margin-top: 64px;
	padding-top: 48px;
	border-top: 1px solid #f1ece9;
}

.service-other-card{
	display: block;
	height: 100%;
	background: #fafafa;
	border: 1px solid #f1ece9;
	border-radius: 10px;
	padding: 28px 24px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-other-card:hover{
	transform: translateY(-3px);
	border-color: #FFB194;
	box-shadow: 0 10px 22px rgba(44, 62, 80, 0.08);
	color: inherit;
}

.service-other-icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(253, 65, 1, 0.1);
	color: #fd4101;
	font-size: 20px;
	margin-bottom: 16px;
}

.service-other-card h5{
	font-weight: 800;
	margin-bottom: 8px;
}

.service-other-card p{
	font-size: 14px;
	line-height: 1.7;
	color: #41464d;
	margin-bottom: 14px;
}

.service-other-link{
	color: #fd4101;
	font-weight: 600;
	font-size: 14px;
}

.activities-page{
	padding-top: 70px;
	padding-bottom: 70px;
	background: #fff;
}

.activity-card{
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
	transition: transform .25s ease, box-shadow .25s ease;
}

.activity-card-link{
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.activity-card-link:hover{
	color: inherit;
}

.activity-card-link:hover .activity-card{
	transform: translateY(-5px);
	box-shadow: 0 16px 30px rgba(44, 62, 80, .12);
}

.activity-card-image{
	position: relative;
	height: 200px;
	overflow: hidden;
}

.activity-card-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}

.activity-card-link:hover .activity-card-image img{
	transform: scale(1.05);
}

.activity-date{
	position: absolute;
	left: 14px;
	bottom: 14px;
	width: 58px;
	height: 58px;
	border-radius: 10px;
	background: #fff;
	color: #fd4101;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.activity-month{
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 4px;
}

.activity-day{
	font-size: 20px;
	font-weight: 800;
}

.activity-card-body{
	padding: 20px 20px 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.activity-top{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.activity-status{
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 5px 10px;
	border-radius: 20px;
}

.activity-status-upcoming{
	background: rgba(253, 65, 1, 0.12);
	color: #fd4101;
}

.activity-status-ongoing{
	background: #111;
	color: #fff;
}

.activity-status-recent{
	background: #f1ece9;
	color: #41464d;
}

.activity-category{
	font-size: 13px;
	font-weight: 600;
	color: #fd4101;
}

.activity-title{
	font-weight: 800;
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 10px;
}

.activity-text{
	font-size: 14px;
	line-height: 1.7;
	color: #41464d;
	margin-bottom: 16px;
	flex-grow: 1;
}

.activity-meta{
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 13px;
	color: #41464d;
}

.activity-meta i{
	color: #fd4101;
	margin-right: 4px;
}

.activity-read-more{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 18px;
	color: #fd4101;
	font-size: 13px;
	font-weight: 700;
}

.activity-card-link:hover .activity-read-more{
	gap: 10px;
}

.activity-detail-meta{
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	color: rgba(255,255,255,.9);
	font-size: 14px;
}

.activity-detail-meta i{
	color: #fd4101;
	margin-right: 5px;
}

.activity-detail-hero .activity-status{
	display: table;
	margin-bottom: 14px;
}

.activity-detail-layout{
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
	gap: clamp(22px, 3vw, 36px);
	align-items: start;
}

.activity-detail-layout.is-single{
	grid-template-columns: minmax(0, 850px);
	justify-content: center;
}

.activity-detail-copy{
	max-width: none;
	margin: 0;
	width: 100%;
}

.activity-gallery{
	position: sticky;
	top: 110px;
	margin: 0;
	padding: clamp(18px, 2.4vw, 26px);
	background: #fff;
	border: 1px solid #f1ece9;
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(44,62,80,.07);
}

.activity-gallery-heading{
	margin-bottom: 18px;
}

.activity-gallery-heading h2{
	font-size: clamp(22px, 2.4vw, 28px);
	margin: 0;
}

.activity-gallery-grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.activity-detail-cta{
	max-width: none;
	margin-top: 36px;
}

@media screen and (max-width: 991.98px){
.activity-detail-layout{
	grid-template-columns: 1fr;
}

.activity-gallery{
	position: static;
}
}

.activity-gallery-item{
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 12px;
	background: #eae5e2;
	box-shadow: 0 8px 18px rgba(44,62,80,.08);
	cursor: pointer;
}

.activity-gallery-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
	pointer-events: none;
}

.activity-gallery-item span{
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fd4101;
	color: #fff;
	opacity: 0;
	transform: translateY(5px);
	transition: opacity .2s ease, transform .2s ease;
	pointer-events: none;
}

.activity-gallery-item:hover img,
.activity-gallery-item:focus-visible img{
	transform: scale(1.05);
}

.activity-gallery-item:hover span,
.activity-gallery-item:focus-visible span{
	opacity: 1;
	transform: translateY(0);
}

.activity-gallery-item:focus-visible{
	outline: 2px solid #fd4101;
	outline-offset: 3px;
}

body.activity-lightbox-open{
	overflow: hidden;
}

.activity-lightbox[hidden]{
	display: none !important;
}

.activity-lightbox{
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.activity-lightbox-backdrop{
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.88);
	cursor: zoom-out;
}

.activity-lightbox-dialog{
	position: relative;
	z-index: 1;
	width: min(1100px, 100%);
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
}

.activity-lightbox-figure{
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.activity-lightbox-figure img{
	display: block;
	max-width: 100%;
	max-height: min(78vh, 820px);
	width: auto;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 24px 60px rgba(0,0,0,.45);
	background: #111;
}

.activity-lightbox-figure figcaption{
	color: rgba(255,255,255,.82);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .04em;
}

.activity-lightbox-close,
.activity-lightbox-nav{
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.12);
	color: #fff;
	backdrop-filter: blur(6px);
	transition: background .2s ease, transform .2s ease;
}

.activity-lightbox-close:hover,
.activity-lightbox-nav:hover,
.activity-lightbox-close:focus-visible,
.activity-lightbox-nav:focus-visible{
	background: #fd4101;
	outline: none;
}

.activity-lightbox-close{
	position: absolute;
	top: -54px;
	right: 0;
}

.activity-lightbox-nav i{
	font-size: 22px;
	line-height: 1;
}

@media screen and (max-width: 767.98px){
.activity-lightbox{
	padding: 16px;
}

.activity-lightbox-dialog{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
}

.activity-lightbox-close{
	position: static;
	order: 1;
	margin-left: auto;
}

.activity-lightbox-figure{
	order: 2;
	width: 100%;
}

.activity-lightbox-prev{
	order: 3;
}

.activity-lightbox-next{
	order: 4;
	margin-top: 0;
}

.activity-lightbox-figure img{
	max-height: 68vh;
}
}

@media screen and (max-width: 575.98px){
.activity-card-image{
	height: 200px;
}

.activity-gallery-grid{
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
}

.media-page{
	padding-top: 70px;
	padding-bottom: 70px;
	background: #fff;
}

.gallery-item{
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	margin: 0;
	height: 100%;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
	text-align: left;
	cursor: pointer;
}

.gallery-item img{
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}

.gallery-item-caption{
	display: block;
	padding: 14px 16px 16px;
	font-size: 14px;
	font-weight: 600;
	color: #2c3e50;
}

.gallery-item-expand{
	position: absolute;
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fd4101;
	color: #fff;
	opacity: 0;
	transform: translateY(-5px);
	transition: opacity .2s ease, transform .2s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img{
	transform: scale(1.04);
}

.gallery-item:hover .gallery-item-expand,
.gallery-item:focus-visible .gallery-item-expand{
	opacity: 1;
	transform: translateY(0);
}

.gallery-item:focus-visible{
	outline: 2px solid #fd4101;
	outline-offset: 3px;
}

.photo-lightbox-caption{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
}

.photo-lightbox-caption strong{
	color: #fff;
	font-size: 16px;
	font-weight: 600;
}

.photo-lightbox-caption span{
	color: rgba(255,255,255,.65);
	font-size: 13px;
}

.video-card{
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	height: 100%;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
	text-align: left;
}

.video-card-button{
	cursor: pointer;
	transition: transform .25s ease, box-shadow .25s ease;
}

.video-card-button:hover,
.video-card-button:focus-visible{
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(44, 62, 80, 0.12);
}

.video-card-button:focus-visible{
	outline: 2px solid #fd4101;
	outline-offset: 3px;
}

.video-card-thumb{
	position: relative;
	display: block;
	height: 200px;
	overflow: hidden;
}

.video-card-thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.video-play{
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.28);
}

.video-play i{
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fd4101;
	color: #fff;
	font-size: 28px;
	padding-left: 3px;
}

.video-card-body{
	display: block;
	padding: 20px 20px 24px;
}

.video-card-body h5,
.video-card-body strong{
	display: block;
	font-weight: 800;
	margin-bottom: 8px;
	color: #2c3e50;
	font-size: 18px;
}

.video-card-body p,
.video-card-body > span{
	display: block;
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: #41464d;
}

.video-lightbox-dialog{
	position: relative;
	z-index: 1;
	width: min(1000px, 100%);
}

.video-lightbox-player{
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 14px;
	background: #000;
	box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

.video-lightbox-player iframe{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.video-lightbox-dialog h3{
	margin: 16px 0 0;
	color: #fff;
	font-size: clamp(18px, 2.4vw, 25px);
	text-align: center;
}

.admin-video-preview{
	position: relative;
	width: min(100%, 560px);
	aspect-ratio: 16 / 9;
	overflow: hidden;
	margin-bottom: 24px;
	border-radius: 14px;
	background: #111;
}

.admin-video-preview img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.admin-video-preview span{
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 42px;
	background: rgba(0,0,0,.25);
}

.download-list{
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.download-item{
	display: flex;
	align-items: center;
	gap: 18px;
	background: #fafafa;
	border: 1px solid #f1ece9;
	border-radius: 12px;
	padding: 20px 22px;
}

.download-icon{
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(253, 65, 1, 0.1);
	color: #fd4101;
	font-size: 24px;
}

.download-body{
	flex: 1;
	min-width: 0;
}

.download-body h5{
	font-weight: 800;
	margin-bottom: 4px;
}

.download-body p{
	margin: 0 0 6px;
	font-size: 14px;
	line-height: 1.6;
	color: #41464d;
}

.download-body span{
	font-size: 12px;
	font-weight: 600;
	color: #fd4101;
}

.download-action{
	font-size: 13px;
	font-weight: 600;
	color: #41464d;
	white-space: nowrap;
}

.download-action-link{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	background: #fd4101;
	color: #fff;
	text-decoration: none;
	transition: background .2s ease, transform .2s ease;
}

.download-action-link:hover,
.download-action-link:focus-visible{
	background: #d93801;
	color: #fff;
	transform: translateY(-1px);
}

.admin-download-form-card{
	max-width: 980px;
}

.admin-download-layout{
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
	gap: clamp(24px, 4vw, 42px);
	align-items: start;
}

.admin-download-fields,
.admin-download-upload-panel{
	min-width: 0;
}

.admin-download-upload-panel{
	padding: 22px;
	border: 1px solid #f1ece9;
	border-radius: 16px;
	background: #fcfbfa;
}

.admin-download-section-head{
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 24px;
}

.admin-download-section-head > span{
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 11px;
	background: #ffefe8;
	color: #fd4101;
	font-size: 20px;
}

.admin-download-section-head h4{
	margin: 0 0 3px;
	color: #2c3e50;
	font-size: 17px;
	font-weight: 800;
}

.admin-download-section-head p{
	margin: 0;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.45;
}

.admin-field-meta{
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.admin-field-meta > span{
	margin-top: 8px;
	color: #8b9199;
	font-size: 12px;
	white-space: nowrap;
}

.admin-download-drop{
	position: relative;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 26px 18px;
	border: 2px dashed #d9d2ce;
	border-radius: 14px;
	background: #fff;
	text-align: center;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.admin-download-drop:hover,
.admin-download-drop.is-dragging{
	border-color: #fd4101;
	background: #fff7f3;
	transform: translateY(-2px);
}

.admin-download-drop.has-file{
	border-style: solid;
	border-color: #27ae60;
	background: #f5fff9;
}

.admin-download-drop.has-error{
	border-color: #c0392b;
	background: #fff8f7;
}

.admin-download-drop input{
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.admin-download-drop-icon{
	width: 68px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
	border-radius: 50%;
	background: #ffefe8;
	color: #fd4101;
	font-size: 30px;
}

.admin-download-drop.has-file .admin-download-drop-icon{
	background: #e7f8ee;
	color: #219653;
}

.admin-download-drop strong{
	max-width: 100%;
	color: #2c3e50;
	font-size: 15px;
	overflow-wrap: anywhere;
}

.admin-download-drop > span:not(.admin-download-drop-icon){
	color: #fd4101;
	font-size: 13px;
	font-weight: 600;
}

.admin-download-drop small{
	margin-top: 5px;
	color: #8b9199;
	font-size: 11px;
	line-height: 1.45;
}

.admin-download-current{
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 16px;
	padding: 14px 16px;
	border: 1px solid #f1ece9;
	border-radius: 12px;
	background: #fff;
}

.admin-download-current strong,
.admin-download-current small{
	display: block;
}

.admin-download-current small{
	margin-bottom: 2px;
	color: #8b9199;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.admin-download-current strong{
	max-width: 180px;
	overflow: hidden;
	color: #2c3e50;
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.admin-download-current div > span{
	display: block;
	margin-top: 2px;
	color: #fd4101;
	font-size: 11px;
	font-weight: 600;
}

.admin-download-current-check{
	margin-left: auto;
	color: #27ae60;
}

@media screen and (max-width: 800px){
.admin-download-layout{
	grid-template-columns: 1fr;
}

.admin-download-upload-panel{
	padding: 18px;
}

.admin-download-drop{
	min-height: 220px;
}
}

@media screen and (max-width: 575.98px){
.download-item{
	flex-wrap: wrap;
}

.download-action-link{
	width: 100%;
	justify-content: center;
}
}

.faq-page{
	padding-top: 70px;
	padding-bottom: 70px;
	background: #fff;
}

.faq-page a{
	color: #fd4101;
	font-weight: 600;
	text-decoration: none;
}

.faq-page a:hover{
	text-decoration: underline;
}

.faq-accordion .accordion-item{
	border: 1px solid #f1ece9;
	border-radius: 10px !important;
	margin-bottom: 12px;
	overflow: hidden;
	background: #fff;
	scroll-margin-top: 100px;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-button{
	font-weight: 800;
	font-size: 16px;
	color: #2c3e50;
	background: #fff;
	box-shadow: none;
	padding: 18px 22px;
}

.faq-accordion .accordion-button:not(.collapsed){
	color: #fd4101;
	background: #FFEFE8;
	box-shadow: none;
}

.faq-accordion .accordion-button:focus{
	box-shadow: none;
	border-color: #f1ece9;
}

.faq-accordion .accordion-button::after{
	background-image: none;
	content: "+";
	font-size: 22px;
	font-weight: 400;
	width: auto;
	height: auto;
	line-height: 1;
	color: #fd4101;
	transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
	content: "–";
	transform: none;
	background-image: none;
}

.faq-accordion .accordion-body{
	padding: 8px 22px 22px;
}

.faq-accordion .accordion-body p{
	font-size: 15px;
	line-height: 1.75;
	color: #41464d;
}

.careers-page{
	padding-top: 70px;
	padding-bottom: 70px;
	background: linear-gradient(90deg, #fafafa, #FFEFE8, #FFF8F7);
}

.careers-visual{
	position: relative;
	height: 100%;
	min-height: 420px;
	overflow: hidden;
	border-radius: 10px;
}

.careers-visual-image{
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.careers-visual::after{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08) 55%);
}

.careers-visual-caption{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 28px 26px 30px;
	color: #fff;
	z-index: 2;
}

.careers-visual-caption h6{
	font-weight: 800;
	margin-bottom: 6px;
}

.careers-visual-caption p{
	margin: 0;
	font-size: 14px;
	opacity: 0.92;
}

.careers-content{
	height: 100%;
	background: #fff;
	border-radius: 10px;
	padding: 36px 32px;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
}

.careers-content h2{
	margin-bottom: 14px;
}

.careers-content p{
	margin-bottom: 14px;
}

.careers-content a:not(.btn){
	color: #fd4101;
	font-weight: 600;
	text-decoration: none;
}

.careers-content a:not(.btn):hover{
	text-decoration: underline;
}

.careers-points{
	margin: 28px 0 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.careers-point{
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.careers-point span{
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(253, 65, 1, 0.1);
	color: #fd4101;
	font-size: 18px;
}

.careers-point h6{
	font-weight: 800;
	margin-bottom: 4px;
}

.careers-point p{
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #41464d;
}

@media screen and (max-width: 767.98px){
.careers-visual,
.careers-visual-image{
	min-height: 280px;
}

.careers-content{
	padding: 28px 22px;
}
}

.login-page{
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
}

.login-visual{
	position: relative;
	background-size: cover;
	background-position: center;
	background-color: rgba(0, 0, 0, 0.55);
	background-blend-mode: darken;
	display: flex;
	align-items: flex-end;
	padding: 48px;
}

.login-visual-copy{
	color: #fff;
	max-width: 420px;
}

.login-brand{
	height: 52px;
	margin-bottom: 24px;
}

.login-visual-copy h2{
	font-family: "Archivo Black", sans-serif;
	font-size: 32px;
	margin-bottom: 10px;
}

.login-visual-copy p{
	margin: 0;
	opacity: 0.9;
}

.login-panel{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 32px;
	background: #fff;
}

.login-card{
	width: 100%;
	max-width: 420px;
}

.login-logo{
	height: 56px;
	margin-bottom: 24px;
}

.login-card h1{
	margin-bottom: 8px;
}

.login-card p{
	margin-bottom: 24px;
}

.login-card label{
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
}

.login-card input[type="email"],
.login-card input[type="password"]{
	width: 100%;
	border: 1px solid #e6e0dd;
	border-radius: 8px;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 14px;
	outline: none;
}

.login-card input:focus{
	border-color: #fd4101;
}

.login-remember label{
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	margin: 0;
}

.login-error{
	background: #fff1ed;
	color: #821B00;
	border-radius: 8px;
	padding: 12px 14px;
	margin-bottom: 18px;
	font-size: 14px;
}

.login-back{
	margin-top: 24px;
	text-align: center;
}

.login-back a{
	color: #fd4101;
	font-weight: 600;
	text-decoration: none;
}

.login-back a:hover{
	text-decoration: underline;
}

.dash-welcome{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.dash-welcome h2{
	margin-bottom: 6px;
}

.dash-welcome p{
	margin: 0;
}

.dash-cards{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 28px;
}

.dash-card{
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid #f1ece9;
	border-radius: 12px;
	padding: 22px 20px;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dash-card:hover{
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(44, 62, 80, 0.1);
	color: inherit;
}

.dash-card-icon{
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(253, 65, 1, 0.1);
	color: #fd4101;
	font-size: 22px;
}

.dash-card-value{
	display: block;
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 4px;
}

.dash-card-label{
	font-size: 13px;
	color: #41464d;
}

.dash-panel{
	background: #fff;
	border: 1px solid #f1ece9;
	border-radius: 12px;
	padding: 28px 24px;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
}

.dash-panel p{
	margin-bottom: 18px;
}

.dash-links{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dash-links a{
	display: inline-flex;
	padding: 8px 14px;
	border-radius: 20px;
	background: #FFEFE8;
	color: #fd4101;
	font-weight: 600;
	font-size: 13px;
	text-decoration: none;
}

.dash-links a:hover{
	background: #fd4101;
	color: #fff;
}

.admin-flash{
	background: #e9f7ef;
	color: #1e7a46;
	border-radius: 8px;
	padding: 12px 14px;
	margin-bottom: 18px;
	font-size: 14px;
}

.admin-flash-danger{
	background: #fff0ed;
	color: #821B00;
}

.admin-table-wrap{
	background: #fff;
	border: 1px solid #f1ece9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
}

.admin-table{
	width: 100%;
	border-collapse: collapse;
}

.admin-table th,
.admin-table td{
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid #f1ece9;
	font-size: 14px;
	vertical-align: top;
}

.admin-table th{
	background: #fafafa;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #41464d;
}

.admin-table tr:last-child td{
	border-bottom: none;
}

.admin-table-actions{
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

.admin-table-actions form{
	margin: 0;
}

.admin-link{
	background: none;
	border: none;
	padding: 0;
	color: #fd4101;
	font-weight: 600;
	font-size: 13px;
	text-decoration: none;
	cursor: pointer;
}

.admin-link:hover{
	text-decoration: underline;
	color: #fd4101;
}

.admin-link-danger{
	color: #821B00;
}

.admin-empty{
	text-align: center;
	padding: 48px 24px;
}

.admin-page-head{
	margin-bottom: 24px;
}

.admin-page-head h2{
	margin: 8px 0 6px;
}

.admin-page-head p{
	margin: 0;
	max-width: 560px;
}

.admin-back-link{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fd4101;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.admin-back-link:hover{
	color: #821B00;
}

.admin-form-card{
	background: #fff;
	border: 1px solid #f1ece9;
	border-radius: 16px;
	padding: clamp(16px, 3vw, 32px);
	box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
	width: 100%;
	max-width: 980px;
	min-width: 0;
	container-type: inline-size;
	container-name: admin-form;
}

.admin-form-card-narrow{
	max-width: 620px;
}

.admin-blog-form-card{
	max-width: 1050px;
}

.admin-blog-form-grid{
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 30px;
	align-items: start;
	margin-bottom: 10px;
}

.admin-blog-image-drop{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border: 2px dashed #e6e0dd;
	border-radius: 14px;
	background: #fafafa;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease;
}

.admin-blog-image-drop:hover{
	border-color: #fd4101;
	background: #FFEFE8;
}

.admin-blog-image-drop img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.admin-blog-image-placeholder{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 16px;
	color: #41464d;
}

.admin-blog-image-placeholder i{
	font-size: 30px;
	color: #fd4101;
	margin-bottom: 8px;
}

.admin-blog-image-placeholder strong{
	font-size: 14px;
}

.admin-blog-image-placeholder span{
	font-size: 11px;
	color: #6b7280;
	margin-top: 4px;
}

.admin-blog-image-drop.has-image .admin-blog-image-placeholder{
	display: none;
}

.admin-blog-image-drop input{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.admin-gallery-field{
	margin-top: 28px;
	padding: 24px;
	border: 1px solid #f1ece9;
	border-radius: 14px;
	background: #fafafa;
}

.admin-gallery-heading{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.admin-gallery-heading .admin-field-label{
	margin-bottom: 2px;
}

.admin-gallery-upload-btn{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: 8px;
	background: #FFEFE8;
	color: #fd4101;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	margin: 0;
}

.admin-gallery-upload-btn:hover{
	background: #fd4101;
	color: #fff;
}

.admin-gallery-input{
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.admin-gallery-subtitle{
	margin: 16px 0 10px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #6b7280;
}

.admin-gallery-grid{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.admin-gallery-item{
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: 10px;
	background: #eae5e2;
	margin: 0;
}

.admin-gallery-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.admin-gallery-item span{
	position: absolute;
	left: 6px;
	right: 6px;
	bottom: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 6px;
	border-radius: 7px;
	background: rgba(17,17,17,.82);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
}

.admin-gallery-item span input{
	width: auto;
}

.admin-activity-gallery{
	max-width: 900px;
	margin-top: 30px;
	padding: 28px;
	border: 1px solid #f1ece9;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(44,62,80,.06);
}

.admin-activity-gallery h3{
	font-size: 22px;
	margin-bottom: 20px;
}

.admin-field-hint-top{
	margin: -4px 0 8px;
}

.admin-member-layout{
	display: grid;
	grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
	gap: clamp(16px, 3vw, 32px);
	align-items: start;
	width: 100%;
}

.admin-member-photo,
.admin-member-fields{
	min-width: 0;
	width: 100%;
}

.admin-field-label{
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #2c3e50;
}

.admin-req{
	color: #fd4101;
}

.admin-field{
	margin-bottom: 18px;
}

.admin-form-divider{
	border: 0;
	border-top: 1px solid #f1ece9;
	margin: 28px 0;
	opacity: 1;
}

.admin-field-row{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.admin-field-row-name{
	grid-template-columns: 120px 1fr;
}

.admin-field-row-role{
	grid-template-columns: 1fr 140px;
}

.admin-field-hint{
	display: block;
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.5;
	color: #6b7280;
}

.admin-form-card input:not([type="file"]),
.admin-form-card textarea,
.admin-form-card select{
	width: 100%;
	max-width: 100%;
	min-width: 0;
	border: 1px solid #e6e0dd;
	border-radius: 10px;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 16px;
	background: #fafafa;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.admin-form-card textarea{
	resize: vertical;
	min-height: 140px;
	line-height: 1.6;
}

.admin-form-card input:not([type="file"]):focus,
.admin-form-card textarea:focus,
.admin-form-card select:focus{
	border-color: #fd4101;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(253, 65, 1, 0.12);
}

.admin-blog-table-title{
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 280px;
}

.admin-blog-table-title img{
	width: 72px;
	height: 50px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}

.admin-blog-table-title strong,
.admin-blog-table-title small{
	display: block;
}

.admin-blog-table-title small{
	margin-top: 3px;
	color: #6b7280;
	white-space: normal;
}

.admin-category-badge{
	display: inline-flex;
	padding: 5px 10px;
	border-radius: 999px;
	background: #FFEFE8;
	color: #fd4101;
	font-size: 12px;
	font-weight: 700;
}

.admin-blog-preview{
	max-width: 900px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #f1ece9;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(44,62,80,.06);
}

.admin-blog-preview > img{
	width: 100%;
	max-height: 360px;
	object-fit: cover;
}

.admin-blog-preview-copy{
	padding: clamp(22px, 4vw, 36px);
}

.admin-blog-preview-intro{
	font-size: 16px;
	line-height: 1.75;
	color: #2c3e50;
	margin: 0 0 22px;
}

.admin-blog-preview-divider{
	width: 56px;
	height: 3px;
	border-radius: 4px;
	background: #fd4101;
	margin-bottom: 22px;
}

.admin-blog-view-head{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 10px;
}

.admin-blog-view-title{
	font-family: "Archivo Black", sans-serif;
	font-size: clamp(22px, 2.4vw, 28px);
	line-height: 1.3;
	margin: 12px 0 8px;
	max-width: 720px;
	overflow-wrap: break-word;
}

.admin-blog-view-actions{
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	flex-shrink: 0;
}

.admin-blog-preview .blog-article-content{
	font-size: 15px;
}

@media screen and (max-width: 760px){
.admin-blog-form-grid{
	grid-template-columns: 1fr;
}

.admin-blog-image-panel{
	max-width: 420px;
}

.admin-blog-view-head{
	flex-direction: column;
}

.admin-blog-view-actions{
	width: 100%;
}

.admin-blog-view-actions .btn{
	flex: 1;
	text-align: center;
}

.admin-gallery-grid{
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

.admin-form-card .is-invalid{
	border-color: #c0392b;
}

.admin-form-card .ck.ck-editor,
.admin-form-card .ck.ck-editor__main,
.admin-form-card .ck.ck-content{
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.admin-form-card .ck.ck-toolbar{
	border-color: #e6e0dd !important;
	background: #fff !important;
	border-radius: 10px 10px 0 0 !important;
	flex-wrap: wrap !important;
}

.admin-form-card .ck.ck-toolbar__items{
	flex-wrap: wrap;
}

.admin-form-card .ck.ck-editor__main > .ck-editor__editable{
	min-height: 200px;
	background: #fafafa;
	border-color: #e6e0dd !important;
	border-radius: 0 0 10px 10px !important;
	box-shadow: none !important;
	word-break: break-word;
}

.admin-form-card .ck.ck-editor__editable.ck-focused{
	border-color: #fd4101 !important;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(253, 65, 1, 0.12) !important;
}

.ck.ck-balloon-panel{
	z-index: 40 !important;
}

.admin-photo-drop{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	width: 100%;
	border: 2px dashed #e6e0dd;
	border-radius: 16px;
	background: #fafafa;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.admin-photo-drop:hover,
.admin-photo-drop:focus-within{
	border-color: #fd4101;
	background: #FFEFE8;
}

.admin-photo-drop-empty{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px 16px;
	color: #41464d;
}

.admin-photo-drop-empty i{
	font-size: 32px;
	color: #fd4101;
	margin-bottom: 10px;
}

.admin-photo-drop-empty strong{
	display: block;
	font-size: 14px;
	margin-bottom: 4px;
}

.admin-photo-drop-empty span{
	font-size: 12px;
	color: #6b7280;
}

.admin-photo-drop-img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.admin-photo-drop.has-image .admin-photo-drop-empty{
	display: none;
}

.admin-photo-input{
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
}

.admin-form-actions{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	padding-top: 18px;
	margin-top: 8px;
	border-top: 1px solid #f1ece9;
}

@container admin-form (max-width: 720px){
.admin-member-layout{
	grid-template-columns: 1fr;
}

.admin-member-photo{
	max-width: 220px;
}

.admin-field-row,
.admin-field-row-name,
.admin-field-row-role{
	grid-template-columns: 1fr;
}

.admin-form-card .ck.ck-editor__main > .ck-editor__editable{
	min-height: 180px;
}
}

@container admin-form (max-width: 480px){
.admin-member-photo{
	max-width: 100%;
}

.admin-form-actions{
	flex-direction: column-reverse;
	align-items: stretch;
}

.admin-form-actions .btn{
	width: 100%;
	text-align: center;
}
}

@media screen and (max-width: 900px){
.admin-page-head h2{
	font-size: 28px;
	word-break: break-word;
}
}

.admin-view-row{
	padding: 16px 0;
	border-bottom: 1px solid #f1ece9;
}

.admin-view-row:last-child{
	border-bottom: none;
}

.admin-view-row span{
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fd4101;
	margin-bottom: 6px;
}

.admin-view-row p{
	margin: 0;
	line-height: 1.7;
	color: #41464d;
}

.admin-photo-preview{
	width: 140px;
	height: 140px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
	margin-bottom: 12px;
}

.admin-table-photo{
	width: 42px;
	height: 42px;
	object-fit: cover;
	border-radius: 8px;
	margin-right: 10px;
	vertical-align: middle;
}

@media screen and (max-width: 991.98px){
.login-page{
	grid-template-columns: 1fr;
}

.login-visual{
	min-height: 220px;
	padding: 28px;
}

.dash-cards{
	grid-template-columns: 1fr 1fr;
}
}

@media screen and (max-width: 575.98px){
.dash-cards{
	grid-template-columns: 1fr;
}
}





